Conditions | 1 |
Total Lines | 8 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import { BaseEndpoint } from './baseEndpoint'; |
||
17 | |||
18 | /** |
||
19 | * Get list of certifications for tv shows |
||
20 | * @returns { Promise<CertificationsResponse> } |
||
21 | * @see https://developers.themoviedb.org/3/certifications/get-tv-certifications |
||
22 | */ |
||
23 | public async tv(): Promise<CertificationsResponse> { |
||
24 | return this.sendGetRequest('certification/tv/list'); |
||
25 | } |
||
28 |